home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mstream_agent.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  110 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10390);
  10.  script_version ("$Revision: 1.10 $");
  11.  script_cve_id("CAN-2000-0138");
  12.  
  13.  name["english"] = "mstream agent Detect";
  14.  name["francais"] = "Detection d'un agent mstream";
  15.  
  16.  script_name(english:name["english"], francais:name["francais"]);
  17.  
  18.  desc["english"] = "
  19. The remote host appears to be running
  20. a mstream agent, which is a trojan that can be 
  21. used to control your system or make it 
  22. attack another network (this is 
  23. actually called a distributed denial
  24. of service attack tool)
  25.  
  26. It is very likely that this host
  27. has been compromised
  28.  
  29. Solution : Restore your system from backups,
  30.        contact CERT and your local
  31.        authorities
  32.  
  33. Risk factor : Critical";
  34.  
  35.  
  36.  
  37.  desc["francais"] = "
  38. Le systeme distant semble faire tourner
  39. un agent mstream, qui peut etre utilisΘ pour prendre 
  40. le controle de celui-ci ou pour attaquer un 
  41. autre rΘseau (outil de dΘni de service 
  42. distribuΘ)
  43.  
  44. Il est trΦs probable que ce systeme a ΘtΘ
  45. compromis
  46.  
  47. Solution : reinstallez votre systΦme α partir
  48.        des sauvegardes, et contactez le CERT
  49.        et les autoritΘs locales
  50.        
  51. Facteur de risque : Critique";
  52.  
  53.  
  54.  script_description(english:desc["english"], francais:desc["francais"]);
  55.  
  56.  summary["english"] = "Detects the presence of a mstream agent";
  57.  summary["francais"] = "Detecte la prΘsence d'un agent mstream";
  58.  
  59.  script_summary(english:summary["english"], francais:summary["francais"]);
  60.  
  61.  script_category(ACT_GATHER_INFO);
  62.  
  63.  
  64.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  65.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  66.  family["english"] = "Backdoors";
  67.  family["francais"] = "Backdoors";
  68.  script_family(english:family["english"], francais:family["francais"]);
  69.  script_dependencie("find_service.nes");
  70.  
  71.  exit(0);
  72. }
  73.  
  74.  
  75.  
  76. function detect(dport, sport)
  77. {  
  78. command = string("ping\n");
  79. ip  = forge_ip_packet(ip_hl:5, ip_v:4,   ip_off:0,
  80.               ip_id:9, ip_tos:0, ip_p : IPPROTO_UDP,
  81.               ip_len : 20, ip_src : this_host(),
  82.              ip_ttl : 255);
  83.  
  84. len = 8 + strlen(command);
  85. udp = forge_udp_packet( ip:ip, 
  86.             uh_sport:65535,
  87.             uh_dport:dport,
  88.             uh_ulen : len, 
  89.             data:command);
  90.  
  91. filter = string("udp and src host ", get_host_ip(), " and dst port ", sport, " and dst host ", this_host());
  92.  
  93. r = send_packet(udp, pcap_active:TRUE, pcap_filter:filter, pcap_timeout:3);
  94. if(!isnull(r))    {
  95.     dstport = get_udp_element(udp:r, element:"uh_dport");
  96.     if(dstport == sport)return(1);
  97.     else return(0);
  98.     }
  99. else return(0);
  100. }
  101.  
  102.  
  103.  
  104. if(detect(sport:6838, dport:10498))security_hole(10498);
  105.   else if(detect(sport:9325, dport:7983))security_hole(7983);
  106.  
  107.  
  108.  
  109.  
  110.